* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fa;
    overflow-x: hidden;
}

/* ================= WHY CHOOSE US SECTION ================= */

.why-choose-section {
    position: relative;
    padding: clamp(60px, 12vh, 100px) 5%;
    background: linear-gradient(135deg, #e8f1ff12 0%, #d4e7ff40 50%, #dbe4f03d 100%);
    overflow: hidden;
}

/* Floating Orbs Background */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: clamp(400px, 50vw, 700px);
    height: clamp(400px, 50vw, 700px);
    background: radial-gradient(circle, rgba(30, 95, 216, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: clamp(350px, 45vw, 600px);
    height: clamp(350px, 45vw, 600px);
    background: radial-gradient(circle, rgba(111, 168, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -25px);
    }
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.why-choose-header {
    text-align: center;
    margin-bottom: clamp(45px, 8vh, 70px);
}

.why-choose-label {
    display: inline-block;
    color: #1E5FD8;
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 22px;
    background: rgba(30, 95, 216, 0.12);
    border-radius: 20px;
    border: 1px solid rgba(30, 95, 216, 0.25);
    backdrop-filter: blur(10px);
}

.why-choose-title {
    color: #0B2C6B;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-title .highlight {
    background: linear-gradient(135deg, #1e5fd899 0%, #1E5FD8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.why-choose-subtitle {
    color: #495057;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(40px, 8vh, 60px);
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    padding: clamp(25px, 4vw, 35px);
    border-radius: 18px;
    border: 1px solid rgba(30, 95, 216, 0.15);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(11, 44, 107, 0.08);
}

/* Card shine effect on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(165, 201, 255, 0.15) 50%,
            transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 95, 216, 0.3);
    box-shadow: 0 15px 40px rgba(30, 95, 216, 0.2);
}

.feature-icon {
    width: clamp(50px, 7vw, 65px);
    height: clamp(50px, 7vw, 65px);
    background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(111, 168, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '✓';
    color: #0B2C6B;
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 900;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(165, 201, 255, 0.6);
}

.feature-title {
    color: #0B2C6B;
    font-size: clamp(17px, 2.2vw, 20px);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: #495057;
    font-size: clamp(14px, 1.6vw, 15px);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(40px, 8vh, 60px);
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    padding: clamp(25px, 4vw, 35px);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(30, 95, 216, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 44, 107, 0.08);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 95, 216, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 95, 216, 0.15);
}

.stat-number {
    color: #A5C9FF;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #495057;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
}

/* CTA Section */
.why-choose-cta {
    text-align: center;
    padding: clamp(35px, 6vh, 50px);
    background: linear-gradient(135deg, #0B2C6B 0%, #1E5FD8 100%);
    border-radius: 20px;
    border: 1px solid rgba(30, 95, 216, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 95, 216, 0.25);
}

.why-choose-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(165, 201, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-heading {
    color: #FFFFFF;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(15px, 1.8vw, 18px);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: clamp(12px, 1.8vh, 14px) clamp(24px, 3.5vw, 30px);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(14px, 1.6vw, 16px);
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #A5C9FF 0%, #6FA8FF 100%);
    color: #0B2C6B;
    box-shadow: 0 8px 20px rgba(165, 201, 255, 0.45);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(165, 201, 255, 0.6);
    background: linear-gradient(135deg, #6FA8FF 0%, #A5C9FF 100%);
}

.cta-btn-primary::after {
    content: '→';
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover::after {
    transform: translateX(4px);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.cta-btn-secondary::before {
    content: '📄';
    font-size: 1em;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media screen and (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media screen and (max-width: 640px) {
    .why-choose-section {
        padding: clamp(40px, 10vh, 60px) 5%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .why-choose-section::before,
    .why-choose-section::after {
        animation: none;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1);
    }
}